runtime.slice.cap (field)

10 uses

	runtime (current package)
		cgocall.go#L276: 		p.cap = cap(s)
		cgocall.go#L512: 		for i := 0; i < s.cap; i++ {
		debuglog.go#L307: 		bb.len, bb.cap = str.len, str.len
		mheap.go#L508: 		sp.cap = n
		print.go#L22: 	rp.cap = sp.len
		slice.go#L18: 	cap   int
		slice.go#L178: 	if cap < old.cap {
		slice.go#L188: 	newcap := old.cap
		slice.go#L194: 		if old.cap < threshold {
		stack.go#L1346: 			*(*slice)(unsafe.Pointer(&objs)) = slice{array: noescape(p), len: int(n), cap: int(n)}